home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 2.0 KB | 54 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _CMDDEFS_
- #define _CMDDEFS_
-
- #ifndef _ODTYPES_
- #include "ODTypes.idl"
- #endif
-
- // The C/C++ output for this file can be compiled by C/C++ and Rez, since
- // It contains #defines for the command numbers of the standard menu items
- // of the document shell
-
- //!!! We should reserve a range
-
- module ODCommands {
- const ODCommandID kODCommandAbout = 999;
-
- const ODCommandID kODCommandNew = 1000;
- const ODCommandID kODCommandOpen = 1001;
- const ODCommandID kODCommandOpenDocument = 1002;
- const ODCommandID kODCommandInsert = 1003;
- const ODCommandID kODCommandClose = 1004;
- const ODCommandID kODCommandSave = 1005;
- const ODCommandID kODCommandSaveACopy = 1006;
- const ODCommandID kODCommandRevert = 1007;
- const ODCommandID kODCommandDraft = 1008;
- const ODCommandID kODCommandPageSetup = 1009;
- const ODCommandID kODCommandPrint = 1010;
- const ODCommandID kODCommandShowPartsBin = 1011;
-
- const ODCommandID kODCommandAddDeleteAOCEMailer = 1030;
- const ODCommandID kODCommandExpandAOCEMailer = 1031;
- const ODCommandID kODCommandContractAOCEMailer = 1032;
- const ODCommandID kODCommandSendMail = 1033;
- const ODCommandID kODCommandForwardMail = 1034;
- const ODCommandID kODCommandReplyToMail = 1035;
- const ODCommandID kODCommandReplyToAllMail = 1036;
-
- const ODCommandID kODCommandUndo = 1016;
- const ODCommandID kODCommandRedo = 1017;
- const ODCommandID kODCommandCut = 1018;
- const ODCommandID kODCommandCopy = 1019;
- const ODCommandID kODCommandPaste = 1020;
- const ODCommandID kODCommandPasteAs = 1021;
- const ODCommandID kODCommandClear = 1022;
- const ODCommandID kODCommandSelectAll = 1023;
- const ODCommandID kODCommandGetPartInfo = 1024;
- const ODCommandID kODCommandPreferences = 1025;
- const ODCommandID kODCommandViewAsWin = 1026;
-
- };
-
- #endif // _CMDDEFS_
-